home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 008a / fglqbx10.zip / 14-01.BAS < prev    next >
BASIC Source File  |  1991-06-07  |  312b  |  20 lines

  1. REM $INCLUDE: 'fastgraf.bi'
  2.  
  3. DEFINT A-Z
  4.  
  5. DIM KeyCode AS STRING*1
  6. DIM AuxCode AS STRING*1
  7.  
  8. Seconds& = 0
  9.  
  10. FGintkey KeyCode, AuxCode
  11.  
  12. WHILE ASC(KeyCode)+ASC(AuxCode) = 0
  13.    FGwaitfor 91
  14.    Seconds& = Seconds& + 5
  15.    PRINT Seconds&; "seconds have elapsed."
  16.    FGintkey KeyCode, AuxCode
  17. WEND
  18.  
  19. END
  20.